home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 May & June / Amiga-CD 1996 #5-6.iso / pd-disketten / dms-gepackt / 2_96 / apd-2-96-2.dms / apd-2-96-2.adf / E-DEVeloper / Install / Install_E-DEV_english < prev    next >
Text File  |  1995-12-01  |  4KB  |  177 lines

  1. ;
  2. ; $PROJECT: E-DEVeloper Version 1.0pd
  3. ;
  4. ; (C) Copyright 1995 Grundler Mathias.  All Rights Reserved.
  5.  
  6.         (complete 0)
  7.  
  8.     (set #WrongKickStart "\nTo use the E-DEVeloper you must\nhave Kick 2.04 or higher!\n")
  9.  
  10.     (if (< (/ (getversion) 65536) 37)
  11.       (abort #WrongKickStart)
  12.     )
  13.  
  14.     (message
  15.       "\n\n\n\n"
  16.       "Welcome to the \n\nE-DEVeloper 1.0pd\n\nInstallation-Script V1.0\n"
  17.     )
  18.  
  19.     (set edev-dest
  20.         (askdir (prompt "Please choose a destination, a drawer named "E-DEVeloper" is automatically generated")
  21.             (help @askdir-help)
  22.             (default "ebin:")
  23.         )
  24.     )
  25.  
  26.         (run (cat "c:makedir "edev-dest"E-DEVeloper"))
  27.  
  28.         (complete 15)
  29.  
  30. ; For Installation from a Diskdrive to a Harddisk delete the lines between here...
  31. ;---------->8---------->8---------->8---------->8---------->8---------->8
  32. ;
  33.  
  34.     (copyfiles 
  35.         (prompt "\nCopying the Drawer-Icon \n")
  36.         (help @copyfiles-help)
  37.         (source "//E-DEVeloper.info")
  38.         (dest   edev-dest)
  39.         (files)
  40.     )
  41. ;                      
  42. ;---------->8---------->8---------->8---------->8---------->8---------->8
  43. ;                       and here...
  44.  
  45.         (set edev-dest (tackon edev-dest "E-DEVeloper"))
  46.  
  47.         (complete 27)
  48.  
  49.     (copyfiles 
  50.         (prompt "\nCopying the E-DEVeloper Mainprogramm...\n")
  51.         (help @copyfiles-help)
  52.         (source "/E-DEV")
  53.         (dest   edev-dest)
  54.         (files)
  55.     )
  56.  
  57.         (complete 35)
  58.  
  59.     (if(askbool
  60.         (prompt "\n Would You like to install the\n E-DEVeoper-Icon to \n"edev-dest"\n")
  61.         (help @askbool_help)
  62.         (default 1)) 
  63.         (copyfiles 
  64.             (prompt "\nCopying the E-DEVeloper-Icon\n")
  65.             (help @copyfiles-help)
  66.             (source "/E-DEV.info")
  67.             (dest edev-dest)
  68.             (files)
  69.             (infos)
  70.         )
  71.     )
  72.  
  73.         (complete 50)
  74.  
  75.     (if(askbool
  76.         (prompt "\n Would You like to install the \n E-DEVeloper-Tools to\n "edev-dest"\n ")
  77.         (help @askbool_help)
  78.         (default 1)) 
  79.  
  80.             ((copyfiles 
  81.             (prompt "\nCopying the E-DEVeloper-Tools...\n")
  82.             (help @copyfiles-help)
  83.             (source "/TOOLS/showprojekt_E")
  84.             (dest edev-dest)
  85.             (files)
  86.             (infos)
  87.                   )
  88.  
  89.             (copyfiles 
  90.             (prompt "\nCopying the E-DEVeloper-Tools...\n")
  91.             (help @copyfiles-help)
  92.             (source "/TOOLS/list2txt_e")
  93.             (dest edev-dest)
  94.             (files)
  95.             (infos)
  96.                   )
  97.  
  98.             (copyfiles 
  99.             (prompt "\nCopying the E-DEVeloper-Tools...\n")
  100.             (help @copyfiles-help)
  101.             (source "/TOOLS/projekt2list")
  102.             (dest edev-dest)
  103.             (files)
  104.             (infos)
  105.                   ))
  106.     )
  107.  
  108.         (complete 65)
  109.  
  110.     (if(askbool
  111.         (prompt "\nWould You like to install the DEMO-Rexx-Scripts??\n")
  112.         (help @askbool_help)
  113.         (default 1)) 
  114.  
  115.             ((copyfiles 
  116.             (prompt "\nCopying Rexx-Scripts...\n")
  117.             (help @copyfiles-help)
  118.             (source "/REXX/")
  119.             (dest "rexx:")
  120.             (files)
  121.             (infos)
  122.                         (all)
  123.                   ))
  124.         )
  125.  
  126.         (complete 70)
  127.  
  128.                 (copyfiles 
  129.             (prompt "\nCopying the E-DEVeloper App-Icon...\n")
  130.             (help @copyfiles-help)
  131.             (source "/icons/e-dev.info")
  132.             (dest "sys:prefs/presets/")
  133.             (files)
  134.                   )
  135.  
  136.         (complete 75)
  137.  
  138.     (if(askbool
  139.         (prompt "\n Would You like to Install the Documentation??\n")
  140.         (help @askbool_help)
  141.         (default 1)) 
  142.         (
  143.             (set edevdoc-dest
  144.                 (askdir (prompt "Please choose the destination ffor the Documentation")
  145.                     (help @askdir-help)
  146.                     (default "edocs:")
  147.                 )
  148.             )
  149.             (copyfiles 
  150.             (prompt "\nCopying the Documentation...\n")
  151.             (help @copyfiles-help)
  152.             (source "/DOKS/E-DEV_english.guide")
  153.             (dest   edevdoc-dest)
  154.             (files)
  155.             (infos))
  156.         )
  157.     )
  158.  
  159.         (complete 99)
  160.  
  161. (run (cat "c:makedir "edev-dest"/Projekte"))
  162.  
  163. (startup "EDEV"
  164.     (prompt " \n\nIt`s needet to add \n\n a Assign to the \n\n  s:User-StartUP \n\n i do this for you...\n\n")
  165.     (help @startup-help)
  166.     (command "if exists "edev-dest"/Projekte \n" )
  167.     (command "   assign eprojects: "edev-dest"/Projekte  \n" )
  168.     (command "endif" )
  169. )
  170.  
  171.     (set @default-dest edev-dest)
  172.  
  173.     (complete 100)
  174.  
  175. (exit "\n\nYou should reboot before starting the E-DEVeloper\n\n or Using any Projects...\n\n")
  176.